home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / init.d / mountdevsubfs.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2008-10-14  |  1KB  |  64 lines

  1. #! /bin/sh
  2. ### BEGIN INIT INFO
  3. # Provides:          mountdevsubfs
  4. # Required-Start:    mountkernfs
  5. # Required-Stop:
  6. # Should-Start:      udev
  7. # Default-Start:     S
  8. # Default-Stop:
  9. # Short-Description: Mount special file systems under /dev.
  10. # Description:       Mount the virtual filesystems the kernel provides
  11. #                    that ordinarily live under the /dev filesystem.
  12. ### END INIT INFO
  13. #
  14. # This script gets called multiple times during boot
  15. #
  16.  
  17. PATH=/lib/init:/sbin:/bin
  18. TTYGRP=5
  19. TTYMODE=620
  20. [ -f /etc/default/devpts ] && . /etc/default/devpts
  21.  
  22. TMPFS_SIZE=
  23. [ -f /etc/default/tmpfs ] && . /etc/default/tmpfs
  24.  
  25. KERNEL="$(uname -s)"
  26.  
  27. . /lib/lsb/init-functions
  28. . /lib/init/mount-functions.sh
  29.  
  30. do_start () {
  31.     #
  32.     # Mount a tmpfs on /dev/shm
  33.     #
  34.     SHM_OPT=
  35.     [ "${SHM_SIZE:=$TMPFS_SIZE}" ] && SHM_OPT=",size=$SHM_SIZE"
  36.     domount tmpfs shmfs /dev/shm tmpfs -onosuid,nodev$SHM_OPT
  37.  
  38.     #
  39.     # Mount /dev/pts. Master ptmx node is already created by udev.
  40.     #
  41.         domount devpts "" /dev/pts devpts -onoexec,nosuid,gid=$TTYGRP,mode=$TTYMODE
  42. }
  43.  
  44. case "$1" in
  45.   "")
  46.     echo "Warning: mountdevsubfs should be called with the 'start' argument." >&2
  47.     do_start
  48.     ;;
  49.   start)
  50.     do_start
  51.     ;;
  52.   restart|reload|force-reload)
  53.     echo "Error: argument '$1' not supported" >&2
  54.     exit 3
  55.     ;;
  56.   stop)
  57.     # No-op
  58.     ;;
  59.   *)
  60.     echo "Usage: mountdevsubfs [start|stop]" >&2
  61.     exit 3
  62.     ;;
  63. esac
  64.